home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / prg_casm / wsc4c10.zip / SELFTEST._M_ < prev    next >
Text File  |  1996-09-01  |  915b  |  39 lines

  1. #
  2. # Microsoft makefile for SELFTEST
  3. #
  4. # To use: "NMAKE SELFTEST._M_"
  5. # (use NMAKE, not MAKE)
  6. #
  7.  
  8. C_FLAGS = -c -AS -G2sw -Oas -Zp
  9.  
  10. selftest.exe: selftest.res selftest.obj selftest.def wscerror.obj wsc.lib wsc.dll\
  11.            about.obj line.obj \
  12.            paint.obj menu.obj runtest.obj
  13.     link /NOD /NOE  @selftest.rsp,,,libw slibcew wsc ,selftest.def;
  14.     rc selftest.res
  15.  
  16. selftest.res: selftest.rc selftest.h
  17.     rc -r selftest.rc
  18.  
  19. about.obj: about.c about.h
  20.    cl $(C_FLAGS)  about.c
  21.  
  22. line.obj: line.c line.h wsc.h
  23.     cl $(C_FLAGS)  line.c
  24.  
  25. menu.obj: menu.c menu.h wsc.h
  26.     cl $(C_FLAGS)  menu.c
  27.  
  28. paint.obj: paint.c paint.h wsc.h
  29.     cl $(C_FLAGS)  paint.c
  30.  
  31. selftest.obj: selftest.c selftest.h wsc.h
  32.    cl $(C_FLAGS)  selftest.c
  33.  
  34. wscerror.obj: wscerror.c wscerror.h wsc.h
  35.    cl $(C_FLAGS)  wscerror.c
  36.  
  37. runtest.obj: runtest.c runtest.h wsc.h
  38.    cl $(C_FLAGS)  runtest.c
  39.